@charset "utf-8";

/* reset */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dd,
ul,
ol,
pre,
form,
input,
textarea,
th,
td,
select {
    margin: 0;
    padding: 0;
    font-weight: normal;
    text-indent: 0;
}

a,
button,
textarea,
select {
    background: none;
    -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
    outline: none;
    -webkit-appearance: none;
}

input{
	background: none;
	-webkit-tap-highlight-color: rgba(255, 0, 0, 0);
	outline: none;
}

em {
    font-style: normal
}

li {
    list-style: none
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    border: none;
}

table {
    border-collapse: collapse;
}

textarea {
    resize: none;
    overflow: auto;
}

/* end reset */

/* public */
/* 清除浮动 */
.clear {
    zoom: 1;
}

.clear:after {
    content: '';
    display: block;
    clear: both;
}

/* 定义盒模型为怪异和模型（宽高不受边框影响） */
.boxSiz {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

/* 强制换行 */
.toWrap {
    word-break: break-all;
    /* 只对英文起作用，以字母作为换行依据。 */
    word-wrap: break-word;
    /* 只对英文起作用，以单词作为换行依据。*/
    white-space: pre-wrap;
    /* 只对中文起作用，强制换行。*/
}

/* 禁止换行 */
.noWrap {
    white-space: nowrap;
}

/* 禁止换行,超出省略号 */
.noWrapEllipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 文字两端对齐 */
.text-justify {
    text-align: justify;
    text-justify: inter-ideograph;
}

/* 定义盒模型为 flex布局兼容写法并让内容水平垂直居中 */
.flex-center {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -o-box;
    display: box;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -o-box-pack: center;
    box-pack: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -o-box-align: center;
    box-align: center;
}

/* public end */

CMSPRO_CHANNEL,
CMSPRO_DOCUMENT{
    display: inline;
    color: inherit;
    width: 100%;
    height: 100%;
}
